home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Nave / Monkey Lander.swf / scripts / frame_37 / PlaceObject2_317_598 / CLIPACTIONRECORD onClipEvent(enterFrame).as
Encoding:
Text File  |  2006-06-13  |  278 b   |  17 lines

  1. onClipEvent(enterFrame){
  2.    if(30 < timer)
  3.    {
  4.       goto = this._currentframe + 1;
  5.       if(this._totalframes < goto)
  6.       {
  7.          this.gotoAndStop(1);
  8.       }
  9.       else
  10.       {
  11.          this.gotoAndStop(goto);
  12.       }
  13.       timer = 0;
  14.    }
  15.    timer++;
  16. }
  17.